/* ============================================
   HSO Signature – Styles
   Nude #c1a4a2 | Midnight #192341 | Shark #252c37
   ============================================ */

:root {
  --nude:        #c1a4a2;
  --nude-70:     rgba(193, 164, 162, 0.7);
  --nude-40:     rgba(193, 164, 162, 0.4);
  --nude-20:     rgba(193, 164, 162, 0.2);
  --nude-10:     rgba(193, 164, 162, 0.1);
  --midnight:    #192341;
  --shark:       #252c37;
  --shark-60:    rgba(37, 44, 55, 0.6);
  --shark-20:    rgba(37, 44, 55, 0.2);
  --shark-08:    rgba(37, 44, 55, 0.08);
  --white:       #ffffff;
  --off-white:   #faf8f7;
}


/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 90ms; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 180ms; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 270ms; }


/* ============================================
   Shared helpers
   ============================================ */

.sig-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 0.75rem;
}

.sig-section-headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw + 0.75rem, 2.75rem);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.sig-section-intro {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--shark-60);
  line-height: 1.7;
  max-width: 560px;
}


/* ============================================
   HERO
   ============================================ */

.sig-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.sig-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sig-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.sig-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(25, 35, 65, 0.2) 0%,
    rgba(25, 35, 65, 0.55) 40%,
    rgba(25, 35, 65, 0.88) 100%
  );
}

.sig-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0 clamp(2rem, 4vw, 4rem);
  width: 100%;
  height: 100%;
  padding-inline: clamp(2rem, 5vw, 6rem);
}

/* Left column */
.sig-hero__left {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: column;
}

.sig-hero__line {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
  border-radius: 2px;
  transform-origin: left;
  animation: hero-line-in 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.sig-hero__desc {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.sig-hero__actions {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem;
  align-items: center;
}

.sig-hero__actions .btn--primary {
  background: var(--nude);
  color: var(--midnight);
  border: 2px solid var(--nude) !important;
  font-weight: 700;
  box-shadow: none;
}

.sig-hero__actions .btn--primary:hover {
  background: #2933ba;
  color: var(--white);
  border-color: #2933ba !important;
  box-shadow: 0 8px 32px rgba(41, 51, 186, 0.35);
}

/* Headline */
.sig-hero__headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw + 0.5rem, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.025em;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  text-align: right;
}

.sig-hero__headline em {
  font-family: 'Thirsty Rough', Georgia, serif;
  font-style: normal;
  font-weight: 700;
  color: var(--nude);
  position: relative;
  display: inline-block;
}

.sig-hero__headline em::after {
  content: '';
  position: absolute;
  bottom: 0.04em;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--nude);
  opacity: 0.55;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.sig-hero__headline em.revealed-em::after {
  transform: scaleX(1);
}

/* Hero keyframes */
@keyframes hero-line-in {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Hero particles */
.sig-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sig-hero__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--nude);
  animation: sigFloat var(--duration, 10s) var(--delay, 0s) ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sigFloat {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(var(--tx, 50px), var(--ty, -50px)); }
}

/* Hero scroll indicator */
.sig-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.4s;
}

.sig-hero__scroll-line {
  width: 1px;
  height: 65px;
  background: linear-gradient(to bottom, transparent, var(--nude));
  animation: sigScrollPulse 2.5s ease-in-out infinite;
}

@keyframes sigScrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(0.6); opacity: 1; }
}

/* Icon pulse */
@keyframes sig-icon-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}


/* ============================================
   OVERVIEW
   ============================================ */

.sig-overview {
  background: var(--off-white);
}

.sig-overview__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* ---- Bento Grid ---- */
.sig-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}

.sig-bento__card {
  background: var(--white);
  border: 1px solid var(--shark-08);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sig-bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-bento__card--large {
  grid-row: span 2;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
}

.sig-bento__card--small {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-top: 3px solid var(--nude);
}

.sig-bento__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--shark);
}

.sig-bento__icon svg {
  width: 28px;
  height: 28px;
}

.sig-bento__icon--sm {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.sig-bento__icon--sm svg {
  width: 22px;
  height: 22px;
}

/* Zahnrad — dreht sich langsam */
.sig-bento__icon--spin svg {
  animation: sigIconSpin 8s linear infinite;
}

@keyframes sigIconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Viereck — rotiert hin und her */
.sig-bento__icon--rotate svg {
  animation: sigIconRotate 4s ease-in-out infinite;
}

@keyframes sigIconRotate {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(90deg); }
  50%      { transform: rotate(90deg); }
  75%      { transform: rotate(0deg); }
}

/* Häkchen — leicht springend */
.sig-bento__icon--bounce svg {
  animation: sigIconBounce 2s ease-in-out infinite;
}

@keyframes sigIconBounce {
  0%, 100% { transform: translateY(0); }
  30%      { transform: translateY(-5px); }
  50%      { transform: translateY(0); }
  65%      { transform: translateY(-3px); }
  80%      { transform: translateY(0); }
}

.sig-bento__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.6rem;
}

.sig-bento__card--large .sig-bento__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.sig-bento__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.sig-bento__card--large .sig-bento__text {
  flex: 1;
}

/* Accent variant — dark card with image */
.sig-bento__card--accent {
  background: var(--midnight);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}

.sig-bento__card--accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/img/service-signature.png') center/cover no-repeat;
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.sig-bento__card--accent:hover::before {
  opacity: 0.25;
}

.sig-bento__card--accent:hover {
  box-shadow: 0 16px 50px rgba(25, 35, 65, 0.3);
}

.sig-bento__card--accent .sig-bento__icon {
  color: var(--nude);
  position: relative;
}

.sig-bento__card--accent .sig-bento__title {
  color: var(--white);
  position: relative;
}

.sig-bento__card--accent .sig-bento__text {
  color: rgba(255, 255, 255, 0.65);
  position: relative;
}

.sig-bento__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
}

.sig-bento__btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--midnight);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--shark-20);
  border-radius: 50px;
  transition: all 0.2s;
}

.sig-bento__btn:hover {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}

.sig-bento__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shark-60);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.2s;
}

.sig-bento__arrow:hover {
  color: var(--midnight);
  gap: 0.7rem;
}

.sig-bento__arrow svg {
  width: 16px;
  height: 16px;
}


/* ============================================
   PROCESS SLIDER
   ============================================ */

.sig-slider-section {
  background: var(--white);
}

.sig-slider__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-slider {
  position: relative;
  overflow: hidden;
}

.sig-slider__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sig-slider__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.sig-slider__image {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.sig-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig-slider__slide:hover .sig-slider__image img {
  transform: scale(1.03);
}

.sig-slider__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--off-white);
}

.sig-slider__step {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--nude-70);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.sig-slider__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.75rem;
}

.sig-slider__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--shark-60);
  line-height: 1.7;
  max-width: 420px;
}

/* Controls */
.sig-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

.sig-slider__btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--shark-20);
  background: var(--white);
  color: var(--shark);
  cursor: pointer;
  transition: all 0.2s;
}

.sig-slider__btn:hover {
  background: #2933ba;
  border-color: #2933ba;
  color: var(--white);
}

.sig-slider__btn svg {
  width: 20px;
  height: 20px;
}

.sig-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.sig-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--shark-20);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.sig-slider__dot--active {
  background: var(--nude);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .sig-slider__slide {
    grid-template-columns: 1fr;
  }
  .sig-slider__image {
    aspect-ratio: 16/9;
  }
  .sig-slider__body {
    padding: 1.5rem;
  }
}


/* ============================================
   PROCESS / ABLAUF (legacy)
   ============================================ */

.sig-process {
  background: var(--off-white);
}

.sig-process__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sig-process-card {
  background: var(--white);
  border: 1px solid var(--shark-08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sig-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-process-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.sig-process-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig-process-card:hover .sig-process-card__image img {
  transform: scale(1.05);
}

.sig-process-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.sig-process-card__step {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 0.5rem;
}

.sig-process-card__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.4rem;
}

.sig-process-card__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--shark-60);
  line-height: 1.6;
}


/* ============================================
   DISKRETION
   ============================================ */

.sig-diskretion {
  background: var(--white);
  overflow: hidden;
  padding-top: 0;
  margin-top: calc(var(--space-section, 5rem) * -0.4);
}

.sig-diskretion__layout {
  position: relative;
  min-height: 560px;
}

.sig-diskretion__content {
  width: 50%;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  min-height: 560px;
}

.sig-diskretion__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  position: relative;
  justify-content: center;
  height: 100%;
}

.sig-diskretion__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--shark-08);
  cursor: default;
  position: relative;
}

.sig-diskretion__item:first-child {
  padding-top: 0;
}

.sig-diskretion__item:last-child {
  border-bottom: none;
}


.sig-diskretion__item h4 {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--midnight);
  transition: color 0.3s ease;
}

.sig-diskretion__item:hover h4 {
  color: var(--nude);
}

.sig-diskretion__item p {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  padding-top: 0;
}

.sig-diskretion__item:hover p {
  max-height: 120px;
  opacity: 1;
  padding-top: 0.5rem;
}

/* Image gallery with directional wipe */
.sig-diskretion__gallery {
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  width: calc(50% - clamp(2rem, 4vw, 3rem));
}

.sig-diskretion__img-wrap {
  position: absolute;
  inset: 0;
}

.sig-diskretion__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.sig-diskretion__img--active {
  clip-path: inset(0 0 0 0);
  z-index: 2;
}

.sig-diskretion__img--wipe-down {
  clip-path: inset(0 0 0 0);
  z-index: 2;
}

.sig-diskretion__img--wipe-up {
  clip-path: inset(0 0 0 0);
  z-index: 2;
}


/* ============================================
   TEAM
   ============================================ */

.sig-team {
  background: var(--white);
  margin-top: calc(var(--space-section, 5rem) * -0.3);
}

.sig-team__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sig-team-card {
  background: rgba(41, 51, 186, 0.08);
  border: 1px solid var(--shark-08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.sig-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-team-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nude-10);
  color: var(--nude);
  margin: 0 auto 1rem;
}

.sig-team-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.sig-team-card__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.sig-team-card__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--shark-60);
  line-height: 1.6;
}


/* ============================================
   FAQ
   ============================================ */

.sig-faq {
  background: var(--off-white);
}

.sig-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.sig-faq__content {
  max-width: 640px;
}

.sig-faq__headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.sig-faq__intro {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--shark-60);
  line-height: 1.6;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-faq__image {
  border-radius: 20px;
  overflow: hidden;
  max-width: 90%;
  margin-left: auto;
}

.sig-faq__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: 20px;
}

/* Accordion */
.sig-faq__list {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--shark-20);
}

.sig-faq-item {
  border-bottom: 1px solid var(--shark-20);
}

.sig-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.sig-faq-item__trigger span {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 0.8vw + 0.7rem, 1.1rem);
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.4;
  transition: color 0.2s;
}

.sig-faq-item__trigger:hover span {
  color: var(--nude);
}

.sig-faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--shark-60);
  transition: transform 0.3s, color 0.2s;
}

.sig-faq-item__trigger:hover .sig-faq-item__icon {
  color: var(--nude);
}

.sig-faq-item--open .sig-faq-item__trigger span {
  color: var(--nude);
}

.sig-faq-item--open .sig-faq-item__icon {
  transform: rotate(45deg);
  color: var(--nude);
}

.sig-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.sig-faq-item--open .sig-faq-item__body {
  grid-template-rows: 1fr;
}

.sig-faq-item__body > p {
  min-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.75;
  max-width: 620px;
  transition: padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sig-faq-item--open .sig-faq-item__body > p {
  padding-bottom: 1.4rem;
}

/* FAQ page centered header */
.sig-faq__header-centered {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-faq__list--page {
  max-width: 780px;
  margin-inline: auto;
}

/* CTA below FAQ */
.sig-faq__cta {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.sig-faq__cta-title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.4rem;
}

.sig-faq__cta-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  margin-bottom: 1.25rem;
}


/* ============================================
   CLOSING CTA
   ============================================ */

.sig-closing {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.sig-closing__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sig-closing__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.sig-closing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 35, 65, 0.88) 0%,
    rgba(37, 44, 55, 0.75) 50%,
    rgba(37, 44, 55, 0.65) 100%
  );
}

.sig-closing__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 20% 60%,
    var(--nude-10) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 1.5s ease;
}

.sig-closing--visible .sig-closing__overlay::after {
  opacity: 1;
}

.sig-closing__inner {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: none;
  margin-inline: 0;
}

/* Giant headline — word-by-word reveal */
.sig-closing__headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(3rem, 6vw + 1rem, 6.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  overflow: hidden;
}

.sig-closing__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sig-closing__headline.closing-revealed .sig-closing__word {
  opacity: 1;
  transform: translateY(0);
}

.sig-closing__headline.closing-revealed .sig-closing__word:nth-child(1) { transition-delay: 0ms; }
.sig-closing__headline.closing-revealed .sig-closing__word:nth-child(2) { transition-delay: 80ms; }
.sig-closing__headline.closing-revealed .sig-closing__word:nth-child(3) { transition-delay: 160ms; }
.sig-closing__headline.closing-revealed .sig-closing__word:nth-child(4) { transition-delay: 240ms; }
.sig-closing__headline.closing-revealed .sig-closing__word:nth-child(5) { transition-delay: 320ms; }
.sig-closing__headline.closing-revealed .sig-closing__word:nth-child(6) { transition-delay: 400ms; }

/* Bottom block — offset right */
.sig-closing__bottom {
  margin-left: auto;
  margin-right: 0;
  max-width: 440px;
  padding-top: 2.5rem;
}

.sig-closing__divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
  margin-bottom: 2rem;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.sig-closing__bottom.revealed .sig-closing__divider {
  width: 100%;
}

.sig-closing__text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.sig-closing__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn--primary-nude {
  background: var(--nude);
  color: var(--midnight);
  border: 2px solid var(--nude) !important;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.btn--primary-nude:hover {
  background: #2933ba;
  border-color: #2933ba;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(41, 51, 186, 0.35);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.btn--outline-white:hover {
  border-color: var(--shark);
  background: var(--shark);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 44, 55, 0.4);
  transform: translateY(-2px);
}


/* ============================================
   SUBPAGE: PAGE HERO
   ============================================ */

.sig-page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sig-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sig-page-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: sigBgZoom 12s ease-out forwards;
}

@keyframes sigBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.sig-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(25, 35, 65, 0.45) 0%,
    rgba(25, 35, 65, 0.75) 60%,
    rgba(25, 35, 65, 0.92) 100%
  );
}

.sig-page-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 45% at 50% 65%,
    var(--nude-10) 0%,
    transparent 65%
  );
}

.sig-page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.sig-page-hero__label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 1.25rem;
  animation: sigFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.sig-page-hero__headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(2.5rem, 5vw + 0.75rem, 4.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 1rem;
  animation: sigFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Disable fadeUp on headline when hero-slide children handle their own animation */
.sig-page-hero__headline:has(.hero-slide) {
  animation: none;
  opacity: 1;
  transform: none;
}

.sig-page-hero__headline em {
  font-family: 'Thirsty Rough', Georgia, serif;
  font-style: normal;
  font-weight: 700;
  color: var(--nude);
}

.sig-page-hero__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.1vw + 0.4rem, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 480px;
  margin-inline: auto;
  animation: sigFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.sig-page-hero__line {
  width: 48px;
  height: 3px;
  background: var(--nude);
  border-radius: 2px;
  margin: 1.75rem auto 0;
  transform-origin: center;
  animation: sigLineGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
  opacity: 0.6;
}

.sig-page-hero__line--delayed {
  background: rgba(255, 255, 255, 0.3);
  animation-delay: 1.4s;
  margin-top: 1.25rem;
}

.sig-page-hero__subtitle--delayed {
  animation: sigFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* Hero slide animations — pure horizontal */
.sig-hero-slide {
  display: block;
  opacity: 0;
}

.sig-hero-slide--left {
  animation: sigSlideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.sig-hero-slide--right {
  animation: sigSlideRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes sigSlideLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes sigSlideRight {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes sigFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sigLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 0.6; }
}


/* ============================================
   SUBPAGE: DIVIDER
   ============================================ */

.sig-divider {
  width: 48px;
  height: 2px;
  background: var(--nude);
  border-radius: 2px;
  margin-bottom: 1rem;
}


/* ============================================
   SUBPAGE: BETREUUNG PROCESS
   ============================================ */

.sig-betreuung-process__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-betreuung-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}


/* ============================================
   SUBPAGE: ANSPRECHPARTNER
   ============================================ */

.sig-ansprechpartner {
  background: var(--white);
  margin-top: calc(var(--space-section, 5rem) * -0.3);
}

.sig-ansprechpartner__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.sig-ansprechpartner__text .sig-section-headline {
  margin-bottom: 0.6rem;
}

.sig-ansprechpartner__desc {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--shark-60);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.sig-ansprechpartner__trust {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.sig-ansprechpartner__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shark);
}

.sig-ansprechpartner__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--nude);
}

.sig-ansprechpartner__image {
  border-radius: 20px;
  overflow: hidden;
}

.sig-ansprechpartner__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  border-radius: 20px;
}


/* ============================================
   SUBPAGE: HIGHLIGHTS
   ============================================ */

.sig-highlights {
  background: var(--off-white);
}

.sig-highlights__header {
  max-width: 600px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-highlights__header--centered {
  text-align: center;
  margin-inline: auto;
}

.sig-highlights__header--centered .sig-label {
  padding-left: 0;
}

.sig-highlights__header--centered .sig-label::before {
  display: none;
}

.sig-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sig-highlight-card {
  background: var(--white);
  border: 1px solid var(--shark-08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sig-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-highlight-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.sig-highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig-highlight-card:hover .sig-highlight-card__image img {
  transform: scale(1.05);
}

.sig-highlight-card__body {
  padding: 1.5rem;
}

.sig-highlight-card__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.sig-highlight-card__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.65;
}


/* ============================================
   SUBPAGE: SHOWCASE CARDS (image + text)
   ============================================ */

.sig-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sig-showcase__card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--shark-08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sig-showcase__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37, 44, 55, 0.12);
}

.sig-showcase__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.sig-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig-showcase__card:hover .sig-showcase__image img {
  transform: scale(1.05);
}

.sig-showcase__body {
  padding: 1.75rem;
}

.sig-showcase__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.sig-showcase__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .sig-showcase__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sig-showcase__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}


/* ============================================
   SUBPAGE: LEISTUNGEN DETAIL
   ============================================ */

.sig-leistungen-page {
  background: var(--white);
}

.sig-leistungen-page__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-leistungen-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sig-leistung-detail-card {
  background: var(--off-white);
  border: 1px solid var(--shark-08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sig-leistung-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-leistung-detail-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--nude-10);
  color: var(--nude);
  margin-bottom: 1.25rem;
}

.sig-leistung-detail-card__icon svg {
  width: 24px;
  height: 24px;
}

.sig-leistung-detail-card__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.6rem;
}

.sig-leistung-detail-card__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.sig-leistung-detail-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nude);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.sig-leistung-detail-card__link:hover {
  gap: 0.7rem;
}

.sig-leistung-detail-card__link svg {
  width: 16px;
  height: 16px;
}


/* ============================================
   FAMILY OFFICE: INTRO & FEATURE
   ============================================ */

/* ============================================
   MARQUEE IMAGE SLIDER
   ============================================ */

.sig-marquee-section {
  overflow: hidden;
  padding-block: clamp(1rem, 2vw, 2rem);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: calc(var(--space-section, 5rem) * -0.5);
}

.sig-marquee {
  overflow: hidden;
  position: relative;
}

.sig-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.sig-marquee--left .sig-marquee__track {
  animation: sigMarqueeLeft 40s linear infinite;
}

.sig-marquee--right .sig-marquee__track {
  animation: sigMarqueeRight 40s linear infinite;
}

.sig-marquee__track img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@keyframes sigMarqueeLeft {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-320px * 4 - 1rem * 4), 0, 0); }
}

@keyframes sigMarqueeRight {
  0%   { transform: translate3d(calc(-320px * 4 - 1rem * 4), 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 768px) {
  .sig-marquee__track img {
    width: 240px;
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sig-marquee__track { animation: none; }
}


/* ============================================
   PRAXIS (Family Office examples)
   ============================================ */

.sig-praxis {
  background: var(--off-white);
}

.sig-praxis__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-praxis__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sig-praxis__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--shark-08);
  transition: all 0.3s ease;
}

.sig-praxis__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-praxis__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nude-10);
  color: var(--nude);
  margin: 0 auto 1rem;
}

.sig-praxis__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.sig-praxis__item h4 {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.sig-praxis__item p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--shark-60);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .sig-praxis__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sig-praxis__grid { grid-template-columns: 1fr; }
}


/* ============================================
   PRAXIS SCROLL STACK
   ============================================ */

.sig-praxis-stack {
  background: var(--white);
  padding-top: var(--space-xl, 4rem) !important;
  padding-bottom: 0 !important;
}


.sig-praxis-stack__cards {
  position: relative;
}

.sig-praxis-stack__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  position: sticky;
  top: 80px;
  background: var(--white);
  border-top: 1px solid var(--shark-08);
  overflow: hidden;
}

.sig-praxis-stack__card--reverse {
  direction: rtl;
}

.sig-praxis-stack__card--reverse > * {
  direction: ltr;
}

.sig-praxis-stack__image {
  overflow: hidden;
}

.sig-praxis-stack__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig-praxis-stack__card:hover .sig-praxis-stack__image img {
  transform: scale(1.03);
}

.sig-praxis-stack__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.sig-praxis-stack__step {
  position: absolute;
  top: -0.15em;
  right: 0.1em;
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(8rem, 15vw, 14rem);
  font-weight: 800;
  color: var(--nude-10);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.sig-praxis-stack__card--reverse .sig-praxis-stack__step {
  right: auto;
  left: 0.1em;
}

.sig-praxis-stack__label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 0.75rem;
}

.sig-praxis-stack__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.sig-praxis-stack__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--shark-60);
  line-height: 1.7;
  max-width: 400px;
}

.sig-praxis-stack__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-praxis-stack__spacer {
  display: none;
}

.sig-praxis-stack__card:last-of-type {
  margin-bottom: 80vh;
}

/* Stacking shadow for depth */
.sig-praxis-stack__card:nth-child(2) { box-shadow: 0 -4px 20px rgba(37,44,55,0.06); }
.sig-praxis-stack__card:nth-child(3) { box-shadow: 0 -4px 20px rgba(37,44,55,0.08); }
.sig-praxis-stack__card:nth-child(4) { box-shadow: 0 -4px 20px rgba(37,44,55,0.1); }

@media (max-width: 768px) {
  .sig-praxis-stack__card {
    grid-template-columns: 1fr;
    min-height: auto;
    position: relative;
    top: auto;
  }
  .sig-praxis-stack__card--reverse {
    direction: ltr;
  }
  .sig-praxis-stack__image {
    aspect-ratio: 16/9;
  }
}


/* ============================================
   SONDER CARDS (label + title + text + image)
   ============================================ */

.sig-sonder {
  background: var(--white);
}

.sig-sonder__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.sig-sonder__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sig-sonder__card {
  border: 1px solid var(--shark-08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sig-sonder__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 44, 55, 0.1);
}

.sig-sonder__label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 0.75rem;
}

.sig-sonder__title {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.6rem;
}

.sig-sonder__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--shark-60);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.sig-sonder__image {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.sig-sonder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sig-sonder__card:hover .sig-sonder__image img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .sig-sonder__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sig-sonder__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}


.sig-fo-intro {
  background: var(--off-white);
}

.sig-fo-intro__inner {
  max-width: 780px;
}

.sig-fo-intro__headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.sig-fo-feature {
  background: var(--midnight);
  text-align: center;
}

.sig-fo-feature__inner {
  max-width: 640px;
  margin-inline: auto;
}

.sig-fo-feature .sig-label {
  color: var(--nude);
}

.sig-fo-feature .sig-section-headline {
  color: var(--white);
}

.sig-fo-feature .sig-section-intro {
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin-inline: auto;
}


/* ============================================
   SUBPAGE: PAGE CTA (fallback)
   ============================================ */

.sig-page-cta {
  background: var(--midnight);
  text-align: center;
}

.sig-page-cta__inner {
  max-width: 560px;
  margin-inline: auto;
}

.sig-page-cta__headline {
  font-family: 'Geared Slab', 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.sig-page-cta__headline em {
  font-family: 'Thirsty Rough', Georgia, serif;
  font-style: normal;
  color: var(--nude);
}

.sig-page-cta__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sig-page-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   SUBPAGE: TRUST BAR
   ============================================ */

.sig-trust-bar {
  background: var(--off-white);
  padding-block: 2rem;
}

.sig-trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.sig-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--shark);
}

.sig-trust-bar__item svg {
  width: 18px;
  height: 18px;
  color: var(--nude);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .sig-bento { grid-template-columns: 1fr; }
  .sig-bento__card--large { grid-row: span 1; }
  .sig-process__grid { grid-template-columns: repeat(2, 1fr); }
  .sig-team__grid { grid-template-columns: repeat(2, 1fr); }
  .sig-diskretion__layout { position: relative; }
  .sig-diskretion__content { width: 100%; min-height: auto; }
  .sig-diskretion__gallery { position: relative; top: auto; right: auto; bottom: auto; width: 100%; min-height: 300px; border-radius: 0; }
  .sig-diskretion__img { border-radius: 0; }
  .sig-betreuung-process__grid { grid-template-columns: repeat(2, 1fr); }
  .sig-highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .sig-leistungen-page__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sig-hero__content {
    grid-template-columns: 1fr;
    padding-inline: var(--container-padding, 1.25rem);
  }
  .sig-hero__left,
  .sig-hero__headline {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
    justify-self: start;
  }
  .sig-hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .sig-hero__scroll { display: none; }
  .sig-page-hero { min-height: 45vh; }
  .sig-page-hero__headline { font-size: clamp(2rem, 9vw, 3rem); }

  .sig-leistungen__grid { grid-template-columns: 1fr; }
  .sig-process__grid { grid-template-columns: 1fr; }
  .sig-diskretion__grid { grid-template-columns: 1fr; }
  .sig-diskretion__image { aspect-ratio: 16/9; }
  .sig-team__grid { grid-template-columns: 1fr; }

  .sig-faq__layout {
    grid-template-columns: 1fr;
  }
  .sig-faq__image {
    max-width: 500px;
    order: -1;
  }
  .sig-faq__image img {
    aspect-ratio: 16/9;
  }

  .sig-closing { min-height: auto; }
  .sig-closing__headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .sig-closing__bottom { max-width: 100%; margin-left: 0; }
  .sig-closing__actions { flex-direction: column; }
  .sig-closing__actions .btn { width: 100%; justify-content: center; }

  .sig-ansprechpartner__layout { grid-template-columns: 1fr; }
  .sig-ansprechpartner__image { max-width: 500px; }
  .sig-betreuung-process__grid { grid-template-columns: 1fr; }
  .sig-highlights__grid { grid-template-columns: 1fr; }
  .sig-leistungen-page__grid { grid-template-columns: 1fr; }
  .sig-page-cta__actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .sig-hero__particle { animation: none; }
  .sig-hero__scroll-line { animation: none; }
  .sig-closing__word { opacity: 1; transform: none; transition: none; }
  .sig-bento__icon svg { animation: none; }
  .sig-bento__icon--spin svg,
  .sig-bento__icon--rotate svg,
  .sig-bento__icon--bounce svg { animation: none; }
  .sig-page-hero__bg-image { animation: none; }
  .sig-page-hero__label,
  .sig-page-hero__headline,
  .sig-page-hero__subtitle,
  .sig-page-hero__line,
  .sig-hero-slide { animation: none; opacity: 1; transform: none; }
}
